home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20021006-20030409 / 000141_jaltman@watsun.cc.columbia.edu_Wed Dec 4 08:44:27 EST 2002.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  72 lines

  1. Article: 13923 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!jaltman
  3. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Serial Connection over SSH
  6. Date: 4 Dec 2002 09:09:02 GMT
  7. Organization: Columbia University
  8. Lines: 55
  9. Message-ID: <askgne$dhk$1@newsmaster.cc.columbia.edu>
  10. References: <99b5f249.0212031734.50e141be@posting.google.com>
  11. NNTP-Posting-Host: watsun.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1038992942 13876 128.59.39.2 (4 Dec 2002 09:09:02 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 4 Dec 2002 09:09:02 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13923
  16.  
  17. K95 will not do what you want.  It was not designed to run under
  18. a cygwin environment.
  19.  
  20. However, I belive that the best approach for you to take is not to 
  21. run C-Kermit under cygwin but instead to install sredird under 
  22. cygwin and then access the serial port directly from C-Kermit on Linux
  23. If you require security wrap sredird with stunnel and then connect to
  24. it using 
  25.  
  26.    SET HOST hostname port /TLS-TELNET
  27.  
  28. >from  C-Kermit
  29.  
  30.  
  31. In article <99b5f249.0212031734.50e141be@posting.google.com>,
  32. Jesse Byler <jbsp78@yahoo.com> wrote:
  33. : Hi all,
  34. : I have a serial device connected to COM1 on a Windows 2000 machine,
  35. : and I'd like to be able to access the device remotely - e.g. via SSH. 
  36. : I have set up Cygwin's sshd, so I can log into the windows machine via
  37. : SSH.  Ideally I'd like to compile ckermit under cygwin, but I'd be
  38. : willing to pay for Kermit 95 if it could do what I want.  I'm having
  39. : two problems with Kermit 95:
  40. : 1. The trial version won't run remotely, because it tries to pop up a
  41. : GUI window to remind me about the trial.  I assume this will go away
  42. : once I register, but can someone confirm that?  i.e. Running k95.exe
  43. : doesn't open a GUI window once it's registered?
  44. : 2. In order to run in a cygwin window or over an SSH connection, I
  45. : have to run k95.exe -# 96 to tell kermit to use stdin/stdout instead
  46. : of the Windows console.  This partially works, but stdin seems to be
  47. : line-buffered, so that the serial device doesn't see my input until I
  48. : press return.  Is there some way around this?  ckermit does exactly
  49. : what i want: it doesn't do any terminal emulation or buffering but
  50. : gives me a direct connection to the COM-port's I/O, so the local
  51. : terminal can do its thing.  Too bad ckermit won't run on Windows.
  52. : Another possibility I looked into was to use an iksd server instead of
  53. : sshd, but iksd disables the "set port" command I need to use to
  54. : connect to the serial port.  Perhaps I could use the old "host mode"
  55. : instead, and modify it so that it allows the serial connection?
  56. : In case it's not clear, here's a diagram of what I want to do:
  57. : laptop (linux)  =====SSH=====>  Windows 2000  =====COM1=====>  Device
  58. : -Jesse
  59.  
  60.  
  61.  Jeffrey Altman * Volunteer Developer      Kermit 95 2.1 GUI available now!!!
  62.  The Kermit Project @ Columbia University  SSH, Secure Telnet, Secure FTP, HTTP
  63.  http://www.kermit-project.org/            Secured with MIT Kerberos, SRP, and 
  64.  kermit-support@columbia.edu               OpenSSL.
  65.